home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.june.archive / 000033_crash!sirius.UVic.CA!jblake_Wed, 9 Jun 93 00:06:47 PST.msg < prev    next >
Text File  |  1993-08-31  |  2KB  |  48 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Wed, 9 Jun 93 00:06:47 PST
  3. Received: from sol.UVic.CA by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0o3Hnq-0002upC; Tue, 8 Jun 93 21:30 PDT
  5. Received: from sirius.UVic.CA by sol.UVic.CA (4.1/SMI-4.0.3-UVic-2.43TMX)
  6.     id AA08325; Tue, 8 Jun 93 21:30:11 PDT
  7. Received: from stokes.UVic.CA by sirius.UVic.CA (4.1/SMI-4.1-Engr.UVic.CA-E)
  8.     id AA21150; Tue, 8 Jun 93 21:30:09 PDT
  9. Date: Tue, 8 Jun 93 21:30:09 PDT
  10. Message-Id: <9306090430.AA21150@sirius.UVic.CA>
  11. From: jblake@sirius.UVic.CA (James  Blake)
  12. To: amigae@bkhouse.cts.com
  13. Subject: What am I using E for? and a question.
  14.  
  15.  
  16. My main use of E has been to learn how to program the Amiga.
  17.  
  18. I tried to start programming in C, but I didn't find it very
  19. forgiving and would usually lose interest in whatever I had
  20. started to program.  However after using E I have found that
  21. I generally understand what the computer is actually doing
  22. much better.  (Does that make sense?)  Anyways, I have actually
  23. completed a program now, (or mostly completed anyways) and found
  24. that I generally had fun doing it. 
  25.  
  26. The program I have written is another version of Mines.  I will
  27. probably be releasing it shortly.  (Its called JMines)
  28.  
  29. My question is what is the E equivalent to the c expression:
  30.  
  31. UWORD penvalue = myDrawInfo->dri_Pens[PENNAME]
  32.  
  33. I would have thought it was:
  34.  
  35. penvalue:= mydrawinfo.pens[PENNAME]
  36.  
  37. but e tells me this is a syntax error.  If I just use:
  38.  
  39. penvalue:= mydrawinfo.pens
  40.  
  41. it will give me a value but it is meaningless (to me anyways)
  42.  
  43. If it helps figure out what I mean, I got the C command from
  44. page 57 of the RKM:Libraries Manual.
  45.  
  46. I hope someone can help me.
  47.  
  48. ..james